home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 25 / 7 / DISK2574.ZIP / MSC6SH.ZIP / MSC6.MAK < prev    next >
Text File  |  1990-12-18  |  405b  |  16 lines

  1. # MSC6.MAK for The CTRL+C LIBRARY - MAKEFILE
  2. # Microsoft Ver. 6.0
  3.  
  4. MODEL   = S     # <-----change this for different memory model
  5.  
  6. CLIB    = $(DRIVE)\$(MODEL)msc6cl.lib  graphics.lib
  7. INCLUDE = $(DRIVE)\msc6\include
  8.  
  9. target:  cldemo.exe bootdemo.exe
  10.  
  11. cldemo.exe:  
  12.    cl -A$(MODEL) -DMSC6 -I$(INCLUDE) $(CLIB) cldemo.c
  13.  
  14. bootdemo.exe:
  15.    cl -A$(MODEL) -DMSC6 -I$(INCLUDE) $(CLIB) bootdemo.c
  16.